home *** CD-ROM | disk | FTP | other *** search
/ DOKAN 21 / DOKAN21.iso / Progs / Adam / ADAM-Boletin de noticias-Ene00.EXE / 0 / RCDATA / TFINDFORM / TFINDFORM.txt
Text File  |  2000-01-04  |  1KB  |  66 lines

  1. object FindForm: TFindForm
  2.   Left = 375
  3.   Top = 117
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Find'
  7.   ClientHeight = 92
  8.   ClientWidth = 388
  9.   Font.Color = clBtnText
  10.   Font.Height = -12
  11.   Font.Name = 'Arial'
  12.   Font.Style = []
  13.   FormStyle = fsStayOnTop
  14.   Position = poScreenCenter
  15.   Scaled = False
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 15
  19.   object Prompt: TLabel
  20.     Left = 8
  21.     Top = 16
  22.     Width = 58
  23.     Height = 15
  24.     Caption = '&Find What:'
  25.     FocusControl = SearchEdit
  26.   end
  27.   object SearchEdit: TEdit
  28.     Left = 72
  29.     Top = 12
  30.     Width = 305
  31.     Height = 23
  32.     MaxLength = 45
  33.     TabOrder = 0
  34.     OnChange = SearchEditChange
  35.   end
  36.   object FindBtn: TButton
  37.     Left = 60
  38.     Top = 56
  39.     Width = 84
  40.     Height = 28
  41.     Caption = 'Find &First'
  42.     Default = True
  43.     TabOrder = 1
  44.     OnClick = FindBtnClick
  45.   end
  46.   object NextBtn: TButton
  47.     Left = 152
  48.     Top = 56
  49.     Width = 84
  50.     Height = 28
  51.     Caption = 'Find &Next'
  52.     TabOrder = 2
  53.     OnClick = NextBtnClick
  54.   end
  55.   object CloseBtn: TButton
  56.     Left = 244
  57.     Top = 56
  58.     Width = 84
  59.     Height = 28
  60.     Cancel = True
  61.     Caption = 'Close'
  62.     TabOrder = 3
  63.     OnClick = CloseBtnClick
  64.   end
  65. end
  66.